NDV_CODE_BY_VARSHINIP_Studentrecordmanagement#587
Open
varshini-creates wants to merge 1 commit intondvtechsyssolutions:mainfrom
Open
NDV_CODE_BY_VARSHINIP_Studentrecordmanagement#587varshini-creates wants to merge 1 commit intondvtechsyssolutions:mainfrom
varshini-creates wants to merge 1 commit intondvtechsyssolutions:mainfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
ASSIGNMENT-1 Student Record Management System (Python + JSON)
The Student Record Management System is a simple Python application that allows users to store, manage, and manipulate student information. It is implemented using Object-Oriented Programming (OOP) concepts and stores student data in a JSON file for persistence.
Features
Add Student –
Display All Students –
Search Student –
Delete Student –
Update Student –
Working
Each student is represented as a Student object with attributes:
name
roll_no
course
marks
The StudentManager class handles all operations:
File Handling → Uses a JSON file (student.json) to store and retrieve student records.
CRUD Operations → Provides methods for adding, displaying, searching, deleting, and updating student details.
Menu System → A loop-based menu that interacts with the user and calls the respective functions.